<!DOCTYPE html>
<html>
<head>
<title>Wikitechy AngularJS Tutorials</title>
<script src="https://ajax.googleapis.com/ajax/libs/
angularjs/1.5.6/angular.min.js">
</script>
</head>
<body ng-app="">
<h2>ng-mousemove Directive in AngularJS</h2>
<button ng-mousemove="count = count + 1" ng-init="count=0">
Mouse moves here!
</button>
<h3>The mousemoves count :{{count}} </h3>
</body>
</html>